Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

402
Views
How can I avoid "Using selector: EpollSelector" log message in Django?

I upgrade to Django 3.0, and I have been seeing this message in the logs printed to console. How can I avoid it?

Using selector: EpollSelector
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

This message is from the asyncio library that comes with Python 3. You can configure its logging by modifying the LOGGING configuration:

LOGGING = {
    'version': 1,
    'loggers': {
        'asyncio': {
            'level': 'WARNING',
        },
    },
}

If you're not using Django, you can use this line of code:

import logging
logging.getLogger('asyncio').setLevel(logging.WARNING)
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!